home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Pascal Super Library
/
Pascal Super Library (CW International)(1997).bin
/
DELPHI32
/
GRAPHICS
/
IMGLIB95
/
IMGLIB95.ZIP
/
VIEWPH.DP_
/
VIEWPH.DP
Wrap
Text File
|
1996-04-01
|
467b
|
21 lines
program Viewph;
uses
Forms,
Uimage in 'UIMAGE.PAS' {ViewImageForm},
Ufullscr in 'UFULLSCR.PAS' {FullSlide},
Uabout in 'UABOUT.PAS' {AboutBox},
U_p_size in 'U_P_SIZE.PAS' {Printersize};
{$R *.RES}
begin
Application.CreateForm(TViewImageForm, ViewImageForm);
Application.CreateForm(TFullSlide, FullSlide);
Application.CreateForm(TAboutBox, AboutBox);
Application.CreateForm(TPrintersize, Printersize);
Application.Run;
end.